home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_11_03 / 1103100c < prev    next >
Text File  |  1993-01-03  |  418b  |  28 lines

  1. // tdate7.cpp:
  2.  
  3. #include <iostream.h>
  4. #include "date7.h"
  5.  
  6. main()
  7. {
  8.     Date d1, d2;
  9.     cout << "Enter a date: ";
  10.     cin >> d1;
  11.     cout << "Enter another date: ";
  12.     cin >> d2;
  13.     cout << "d1 - d2 = " << d1 - d2 << endl;
  14.     cout << "d2 - d1 = " << d2 - d1 << endl;
  15.     return 0;
  16. }
  17.  
  18. /* OUTPUT
  19.  
  20. Enter a date: 10/1/1951
  21. Enter another date: 5/1/1954
  22. d1 - d2 = -7/0/-2
  23. d2 - d1 = 7/0/2
  24. */
  25.  
  26.  
  27.  
  28.